Contribution org.nuxeo.ecm.platform.routing.pageproviders--providers
In component org.nuxeo.ecm.platform.routing.pageproviders
org.nuxeo.ecm.platform.routing.pageproviders
inside nuxeo-routing-core-2021.7.15.jar /OSGI-INF/pageproviders-contrib.xml
You can influence this order by adding "require" tags in the containing component declaration, to make sure it is resolved after another component (see "Resolution Order" on components).
This contribution is part of XML component Extension Point
Extension point providers of component PageProviderService.Registration Order
26
The registration order represents the order in which this contribution was registered on its target extention
point.
This will impact the override/merge behaviour when it is implemented on the target service, and is useful for
proper customization of existing contributions.
You can influence this order by adding "require" tags in the containing component declaration, to make sure it is resolved after another component (see "Resolution Order" on components).
Contributed Items
XML Source
<extension point="providers" target="org.nuxeo.ecm.platform.query.api.PageProviderService">
<coreQueryPageProvider name="DOC_ROUTING_SEARCH_ALL_ROUTE_MODELS">
<pattern>
SELECT * FROM DocumentRoute WHERE ecm:currentLifeCycleState = 'validated' AND ecm:isTrashed = 0
</pattern>
<sort ascending="true" column="dc:title"/>
<pageSize>20</pageSize>
</coreQueryPageProvider>
<coreQueryPageProvider name="DOC_ROUTING_SEARCH_ROUTE_MODELS_WITH_TITLE">
<pattern>
SELECT * FROM DocumentRoute WHERE ecm:currentLifeCycleState = 'validated' AND ecm:isTrashed = 0
AND dc:title LIKE ?
</pattern>
<sort ascending="true" column="dc:title"/>
<pageSize>20</pageSize>
</coreQueryPageProvider>
<coreQueryPageProvider name="DOC_ROUTING_SEARCH_ALL_ROUTE_INSTANCES">
<pattern>
SELECT * FROM DocumentRoute WHERE ecm:currentLifeCycleState =
'running' AND ecm:isTrashed = 0 AND dc:title LIKE ?
</pattern>
<sort ascending="true" column="dc:title"/>
<pageSize>20</pageSize>
</coreQueryPageProvider>
<coreQueryPageProvider name="CURRENT_DOC_ROUTING_SEARCH_ATTACHED_DOC">
<pattern>
SELECT * FROM Document WHERE ecm:mixinType != 'Folderish' AND
ecm:isTrashed = 0 AND dc:title ILIKE ?
</pattern>
<sort ascending="true" column="dc:title"/>
<pageSize>20</pageSize>
</coreQueryPageProvider>
<coreQueryPageProvider name="SEARCH_ROUTE_BY_ATTACHED_DOC">
<pattern>
SELECT * FROM DocumentRoute WHERE (ecm:currentLifeCycleState = 'running'
OR ecm:currentLifeCycleState = 'ready') AND ecm:isTrashed = 0 AND docri:participatingDocuments/*
IN (?)
</pattern>
<sort ascending="true" column="dc:title"/>
<pageSize>20</pageSize>
</coreQueryPageProvider>
<genericPageProvider class="org.nuxeo.ecm.platform.routing.core.provider.RoutingTaskPageProvider" name="nuxeo_tasks_listing">
<pageSize>20</pageSize>
</genericPageProvider>
</extension>